home *** CD-ROM | disk | FTP | other *** search
/ The Guided Tour of Multimedia (Second Edition) / The Guided Tour of Multimedia (Second Edition).iso / trials / director / evalcopy / director.z / NAVIGATR.DIR / 00430_Field_430.txt < prev    next >
Text File  |  1994-06-14  |  579b  |  15 lines

  1. MECH ,  75
  2. --**********************************************************
  3. -- Used to accelerate the stage action. By not advancing 
  4. -- a frame and just updating the stage, I was able to
  5. -- get much better preformance. This is logical since Director
  6. -- has much more to do when a frame advances. The pegboard
  7. -- will pass the message to the animator offspring for 
  8. -- processing. We update the stage and loop again.
  9. on runMotor
  10.   repeat while not(the mouseDown )
  11.     mRotorRotation (gMyPegBoard)
  12.     upDateStage
  13.   end repeat
  14.   mRotorRotation (gMyPegBoard)
  15. end runMotor